home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 101-125 / disk_108 / tek / makefile < prev    next >
Makefile  |  1992-05-06  |  564b  |  33 lines

  1. OBJS    = tek.o vt100.o window.o remote.o xmodem.o kermit.o \
  2.           init.o script.o expand.o
  3.  
  4. tek    : $(OBJS)
  5.     ln -v -o tek $(OBJS) -lm -lc
  6.  
  7. tek.o    : tek.c vt100.h tek.h
  8.         cc tek.c
  9.  
  10. vt100.o    : vt100.c vt100.h tek.h
  11.         cc vt100.c
  12.  
  13. window.o    : window.c vt100.h tek.h
  14.             cc window.c
  15.  
  16. remote.o    : remote.c vt100.h tek.h
  17.             cc remote.c
  18.  
  19. xmodem.o    : xmodem.c vt100.h tek.h
  20.             cc xmodem.c
  21.  
  22. kermit.o    : kermit.c vt100.h tek.h
  23.             cc kermit.c
  24.  
  25. script.o    : script.c vt100.h tek.h
  26.             cc script.c
  27.  
  28. init.o        : init.c vt100.h tek.h
  29.             cc init.c
  30.  
  31. expand.o    : expand.c vt100.h tek.h
  32.             cc expand.c
  33.